home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 38 / Amiga Format CD38 (1999-03-15)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-04].iso / -seriously_amiga- / programming / other / wild / support / wilf / modules / io.c < prev    next >
C/C++ Source or Header  |  1999-01-25  |  138b  |  9 lines

  1.  
  2. #include <inline/dos.h>
  3.  
  4. extern struct Library *DOSBase;
  5.  
  6. ULONG LineInput(ULONG *fh,char *line,int max)
  7. {
  8.  return(FGets(fh,line,max)); 
  9. }